home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / mc20.arc / HELLO.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-09-18  |  129 b   |  10 lines

  1. /*
  2.  * Standard 'C' demo... Say hello to the world
  3.  */
  4. #include \mc\stdio.h
  5.  
  6. main()
  7. {
  8.     fputs("Hello world\n", stdout);
  9. }
  10.